home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-parentconflict.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  3KB  |  90 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5.  Copyright 2005,2006 Foxmarks Inc.
  6.  
  7.  foxmarks-parentconflict.xul: implement the conflict dialog that appears when
  8.  it's unclear which of two parent folders should contain a specific item.
  9.   
  10. -->
  11.  
  12. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  13.  
  14. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/conflicts.dtd">
  15.  
  16. <dialog id="foxmarks-parentconflict" title="&parentconflict.title;"
  17.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  18.         windowtype="foxmarks:parentconflict"
  19.         buttons="cancel"
  20.         ondialogcancel="return ConflictCancel();"
  21.         onload="OnParentConflictLoad();"
  22.         persist="screenX screenY">
  23.  
  24.     <script src="foxmarks-conflicts.js" />
  25.         
  26.     <description>&parentconflict.desc1;</description>
  27.     <description>&parentconflict.desc2;</description>
  28.  
  29.     <hbox>
  30.         <label value="&parentconflict.item;" />
  31.         <textbox readonly="true" id="itemname" flex="1" />
  32.     </hbox>
  33.  
  34.     <hbox>
  35.         <vbox>
  36.             <groupbox>
  37.                 <caption label="&conflict.localversion;" />
  38.                 <grid>
  39.                     <columns>
  40.                         <column />
  41.                         <column />
  42.                     </columns>
  43.                     
  44.                     <rows>
  45.                         <row>
  46.                             <label value="&conflict.name;" />
  47.                             <textbox multiline="true" readonly="true" 
  48.                                 id="localname" />
  49.                         </row>
  50.                         <row>
  51.                             <label value="&conflict.description;" />
  52.                             <textbox multiline="true" readonly="true" 
  53.                                 id="localdesc" />
  54.                         </row>
  55.                     </rows>
  56.                 </grid>
  57.             </groupbox>
  58.             <button label="&conflict.retainlocal;" 
  59.                 oncommand="ConflictSelectLocal();" />
  60.         </vbox>
  61.         
  62.         <vbox>
  63.             <groupbox>
  64.                 <caption label="&conflict.serverversion;" />
  65.                 <grid>
  66.                     <columns>
  67.                         <column />
  68.                         <column />
  69.                     </columns>
  70.                     
  71.                     <rows>
  72.                         <row>
  73.                             <label value="&conflict.name;" />
  74.                             <textbox multiline="true" readonly="true" 
  75.                                 id="servername" />
  76.                         </row>
  77.                         <row>
  78.                             <label value="&conflict.description;" />
  79.                             <textbox multiline="true" readonly="true" 
  80.                                 id="serverdesc" />
  81.                         </row>
  82.                     </rows>
  83.                 </grid>
  84.             </groupbox>
  85.             <button label="&conflict.retainserver;" 
  86.                 oncommand="ConflictSelectServer();" />
  87.         </vbox>
  88.     </hbox>
  89. </dialog>
  90.